Does svn have a `revert-all` command?

You could do: svn revert -R . This will not delete any new file not under version control. But you can easily write a shell script to do that like: for file in `svn status|grep "^ *?"|sed -e 's/^ *?

*//'`; do rm $file ; done.

Welcome to SO, and thanks for a thorough answer, as svn revert -R isn't equivalent to the two commands I gave. – Eric Wilson Nov 15 at 16:41.

There is a command svn revert -R In addition If you want to revert a whole directory of files,you can use the --depth=infinity option: svn revert --depth=infinity svn revert is inherently dangerous, since its entire purpose is to throw away data—namely, your uncommitted changes. Once you've reverted, Subversion provides no way to get back those uncommitted changes.

Use the recursive switch --recursive (-R) svn revert -R .

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions